Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit c5de3e8938727b6f0190f31bc9bfaaaf89d3ce47


Parents : d753164
Author : Ivan <ivan@quad4.io>
Signature : Invalid signer <e46112d44649266d71fe2193e00a4710>, author is <ivan@quad4.io>
Date : 2026-07-07T22:58:19-05:00

feat(issue_template): add bug report template and configuration for GitHub issues

Changes

2 files changed, 99 insertions(+), 0 deletions(-)


Diff

diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 00000000..1818a647
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,94 @@
+name: Bug Report
+description: Report something that is broken or crashes
+title: "[Bug]: "
+labels:
+ - bug
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to report a bug. Please fill in the fields below so we can reproduce the issue.
+
+ - type: input
+ id: version
+ attributes:
+ label: MeshChatX version
+ description: The version shown in Settings or the release you installed (for example 4.8.0).
+ placeholder: "4.8.0"
+ validations:
+ required: true
+
+ - type: dropdown
+ id: os
+ attributes:
+ label: Operating system
+ description: Which OS were you using when the bug occurred?
+ options:
+ - Windows 11
+ - Windows 10
+ - Linux
+ - macOS
+ - Android
+ - Other
+ validations:
+ required: true
+
+ - type: input
+ id: os-other
+ attributes:
+ label: OS details (if Other)
+ description: Distribution, build, or device model (for example Ubuntu 24.04, Pixel 8).
+ placeholder: "Ubuntu 24.04 LTS"
+
+ - type: dropdown
+ id: install-method
+ attributes:
+ label: How did you install MeshChatX?
+ options:
+ - Windows installer / portable
+ - Linux AppImage / deb / Flatpak
+ - macOS app
+ - Android APK
+ - pip / uv / source checkout
+ - Docker
+ - Other
+ validations:
+ required: true
+
+ - type: textarea
+ id: description
+ attributes:
+ label: What happened?
+ description: Describe the bug and what you expected instead.
+ placeholder: When I enable an RNode over BLE interface on Windows 11, the backend crashes with...
+ validations:
+ required: true
+
+ - type: textarea
+ id: reproduction
+ attributes:
+ label: Steps to reproduce
+ description: Numbered steps that reliably trigger the issue.
+ placeholder: |
+ 1. Open MeshChatX 4.8.0 on Windows 11
+ 2. Add an RNode interface with port ble://...
+ 3. Restart the app
+ validations:
+ required: true
+
+ - type: textarea
+ id: logs
+ attributes:
+ label: Logs or error output
+ description: Paste relevant console output, log lines, or screenshots.
+ render: shell
+
+ - type: checkboxes
+ id: terms
+ attributes:
+ label: Checklist
+ options:
+ - label: I searched existing issues to avoid duplicates
+ required: true
+ - label: I included my MeshChatX version and operating system
+ required: true

diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..92bc9dea
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: true
+contact_links:
+ - name: Discussions
+ url: https://github.com/Quad4-Software/MeshChatX/discussions
+ about: Ask questions or share ideas with the community


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────